home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 September
/
Chip_2002-09_cd1.bin
/
internet
/
regedit
/
install
/
cedt345.exe
/
template
/
hello world program.for
< prev
next >
Wrap
Text File
|
2002-07-17
|
174b
|
8 lines
C Basic template file for FORTRAN
PROGRAM MAIN
CHARACTER*11 STR
STR = 'hello world'
PRINT 10, STR
10 FORMAT( 1X, A11 )
END